home *** CD-ROM | disk | FTP | other *** search
- class Application extends MovieClip
- {
- static var bEasy = true;
- function Application(root)
- {
- super();
- root.__proto__ = this.__proto__;
- root.__constructor__ = Application;
- this = root;
- this.init();
- }
- static function main(root)
- {
- var _loc1_ = new Application(root);
- }
- static function tr()
- {
- trace(arguments.join(" : "));
- }
- function init(Void)
- {
- this.stop();
- }
- }
-